SET POINT LIGHT

This command will set an existing light to that of a point light.

  Syntax
SET POINT LIGHT Light Number, X, Y, Z
  Parameters
Light Number
Integer
The light number
X
Float
The x position is specified using a coordinate in 3D space
Y
Float
The y position is specified using a coordinate in 3D space
Z
Float
The z position is specified using a coordinate in 3D space

  Returns

This command does not return a value.

  Description

The position is specified using a coordinate in 3D space. The light number must be specified using an integer value. The coordinate must be specified using real values.

  Example Code
sync on
autocam off
color backdrop rgb(0,0,0)
load image "ground.jpg",1
make matrix 1,1000,1000,100,100
prepare matrix texture 1,1,1,1
position matrix 1,-500,0,-500
position camera 0,100,0
set ambient light 20
color ambient light rgb(64,64,128)
set point light 0,0,0,500
position light 0,0,100,0
color light 0,512,512,255
set light range 0,1000
while inkey$()<>"x"
set cursor 0,0
print "LIGHT COMMANDS (X to Exit)"
sync
endwhile
end
  See also

LIGHT Commands Menu
Index